Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2024

This PR contains the following updates:

Package Change Age Confidence
@graphql-mesh/config (source) 0.17.0 -> 0.108.19 age confidence

Release Notes

ardatan/graphql-mesh (@​graphql-mesh/config)

v0.108.19

Compare Source

Patch Changes

v0.108.18

Compare Source

Patch Changes

v0.108.17

Compare Source

Patch Changes

v0.108.16

Compare Source

Patch Changes

v0.108.15

Compare Source

Patch Changes

v0.108.14

Compare Source

Patch Changes

v0.108.13

Compare Source

Patch Changes

v0.108.12

Compare Source

Patch Changes

v0.108.11

Compare Source

Patch Changes

v0.108.10

Compare Source

Patch Changes
  • #​8733
    0c18fe1
    Thanks @​ardatan! - Support Type Merging within additional type defs
    for subscriptions

    This allows subscription events to resolve fields from other subgraphs.

    For example, if you have a products subgraph like this:

    type Query {
      hello: String!
    }
    type Product @​key(fields: "id") {
      id: ID!
      name: String!
      price: Float!
    }

    we need add the subscription fields like this:

    import { defineConfig, loadGraphQLHTTPSubgraph } from '@​graphql-mesh/compose-cli'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGraphQLHTTPSubgraph('products', {
            endpoint: `http://localhost:3000/graphql`
          })
        }
      ],
      additionalTypeDefs: /* GraphQL */ `
        extend schema {
          subscription: Subscription
        }
        type Subscription {
          newProduct: Product! @​resolveTo(pubsubTopic: "new_product", sourceName: "products")
        }
      `
    })

    you can subscribe to Hive Gateway like this:

    subscription {
      newProduct {
        name
        price
      }
    }

    emit an event to the Redis instance on the new_product topic this:

    PUBLISH new_product '{"id":"roomba70x"}'
    

    The subscriber will then receive the following event:

    {
      "data": {
        "newProduct": {
          "name": "Roomba 70x",
          "price": 279.99
        }
      }
    }

    Because Hive Gateway merged the Product type from the products subgraph into the root schema,
    it can resolve the name and price fields even though they are not defined in the
    additionalTypeDefs.

  • Updated dependencies
    [0c18fe1]:

v0.108.9

Compare Source

Patch Changes

v0.108.8

Compare Source

Patch Changes

v0.108.7

Compare Source

Patch Changes

v0.108.6

Compare Source

Patch Changes

v0.108.5

Compare Source

Patch Changes

v0.108.4

Compare Source

Patch Changes

v0.108.3

Compare Source

Patch Changes

v0.108.2

Compare Source

Patch Changes

v0.108.1

Compare Source

Patch Changes

v0.108.0

Compare Source

Patch Changes

v0.107.2

Compare Source

Patch Changes

v0.107.1

Compare Source

Patch Changes

v0.107.0

Compare Source

Patch Changes

v0.106.27

Compare Source

Patch Changes

v0.106.26

Compare Source

Patch Changes

v0.106.25

Compare Source

Patch Changes

v0.106.24

Compare Source

Patch Changes

v0.106.23

Compare Source

Patch Changes

v0.106.22

Compare Source

Patch Changes

v0.106.21

Compare Source

Patch Changes

v0.106.20

Compare Source

Patch Changes

v0.106.19

Compare Source

Patch Changes

v0.106.18

Compare Source

Patch Changes

v0.106.17

Compare Source

Patch Changes

v0.106.16

Compare Source

Patch Changes

v0.106.15

Compare Source

Patch Changes

v0.106.14

Compare Source

Patch Changes

v0.106.13

Compare Source

Patch Changes

v0.106.12

Compare Source

Patch Changes

v0.106.11

Compare Source

Patch Changes

v0.106.10

Compare Source

Patch Changes

v0.106.9

Compare Source

Patch Changes

v0.106.8

Compare Source

Patch Changes

v0.106.7

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from c9b016f to 306cdf4 Compare February 28, 2024 16:43
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.98.7 fix(deps): update dependency @graphql-mesh/config to v0.99.0 Feb 28, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 306cdf4 to 57651ab Compare March 13, 2024 20:27
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.0 fix(deps): update dependency @graphql-mesh/config to v0.99.3 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 57651ab to 7aeeb95 Compare March 14, 2024 14:59
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.3 fix(deps): update dependency @graphql-mesh/config to v0.99.4 Mar 14, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 7aeeb95 to e2ad708 Compare March 20, 2024 21:07
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.4 fix(deps): update dependency @graphql-mesh/config to v0.99.6 Mar 20, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from e2ad708 to d3cfd03 Compare March 22, 2024 17:31
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.6 fix(deps): update dependency @graphql-mesh/config to v0.99.7 Mar 22, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from d3cfd03 to 85356cb Compare March 31, 2024 05:07
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.7 fix(deps): update dependency @graphql-mesh/config to v0.99.8 Mar 31, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 85356cb to 6a0df35 Compare April 8, 2024 16:57
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.8 fix(deps): update dependency @graphql-mesh/config to v0.99.9 Apr 8, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 6a0df35 to a81f30c Compare April 26, 2024 21:53
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.99.9 fix(deps): update dependency @graphql-mesh/config to v0.100.0 Apr 26, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from a81f30c to 487f3b5 Compare April 29, 2024 11:46
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.0 fix(deps): update dependency @graphql-mesh/config to v0.100.1 Apr 29, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 487f3b5 to 78858fa Compare April 29, 2024 14:21
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.1 fix(deps): update dependency @graphql-mesh/config to v0.100.2 Apr 29, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 78858fa to af10135 Compare April 30, 2024 19:10
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.2 fix(deps): update dependency @graphql-mesh/config to v0.100.3 Apr 30, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from af10135 to 90b3334 Compare May 8, 2024 14:52
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.3 fix(deps): update dependency @graphql-mesh/config to v0.100.5 May 8, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 90b3334 to 1f2acce Compare May 22, 2024 11:59
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.5 fix(deps): update dependency @graphql-mesh/config to v0.100.6 May 22, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 1f2acce to bb3139e Compare May 27, 2024 11:00
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.100.6 fix(deps): update dependency @graphql-mesh/config to v0.100.7 May 27, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from bb3139e to 3063b05 Compare June 9, 2024 08:46
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.7 fix(deps): update dependency @graphql-mesh/config to v0.106.12 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 3daa0e6 to d3e7256 Compare December 22, 2024 23:46
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.12 fix(deps): update dependency @graphql-mesh/config to v0.106.14 Dec 22, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from d3e7256 to 30f7547 Compare December 29, 2024 23:42
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.14 fix(deps): update dependency @graphql-mesh/config to v0.106.15 Dec 29, 2024
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 30f7547 to b865c76 Compare January 1, 2025 20:05
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.15 fix(deps): update dependency @graphql-mesh/config to v0.106.16 Jan 1, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from b865c76 to 0859fff Compare January 9, 2025 23:30
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.16 fix(deps): update dependency @graphql-mesh/config to v0.106.17 Jan 9, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 0859fff to f2d0460 Compare January 25, 2025 11:47
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.17 fix(deps): update dependency @graphql-mesh/config to v0.106.18 Jan 25, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from f2d0460 to fe06123 Compare February 16, 2025 13:49
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.18 fix(deps): update dependency @graphql-mesh/config to v0.106.23 Feb 16, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from fe06123 to 771e412 Compare February 23, 2025 19:44
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.106.23 fix(deps): update dependency @graphql-mesh/config to v0.107.0 Feb 23, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 771e412 to 59c4abf Compare March 8, 2025 11:32
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.107.0 fix(deps): update dependency @graphql-mesh/config to v0.108.1 Mar 8, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 59c4abf to 226380c Compare April 20, 2025 00:18
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.1 fix(deps): update dependency @graphql-mesh/config to v0.108.4 Apr 20, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 226380c to d7bac0a Compare August 5, 2025 19:46
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.4 fix(deps): update dependency @graphql-mesh/config to v0.108.7 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from d7bac0a to 4db9dc3 Compare August 10, 2025 08:06
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.7 fix(deps): update dependency @graphql-mesh/config to v0.108.8 Aug 10, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 4db9dc3 to 065bd8f Compare September 6, 2025 18:43
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.8 fix(deps): update dependency @graphql-mesh/config to v0.108.13 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 065bd8f to 993781e Compare September 19, 2025 19:34
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.13 fix(deps): update dependency @graphql-mesh/config to v0.108.14 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/graphql-mesh-config-0.x branch from 993781e to d99fe0c Compare November 20, 2025 16:21
@renovate renovate bot changed the title fix(deps): update dependency @graphql-mesh/config to v0.108.14 fix(deps): update dependency @graphql-mesh/config to v0.108.19 Nov 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant